Function: sc-attribs-<>-addresses
sc-attribs-<>-addresses is a byte-compiled function defined in
supercite.el.gz.
Signature
(sc-attribs-<>-addresses FROM)
Documentation
Extract the author's email terminus from email address FROM.
Match addresses of the style "<name[stuff]>."
Source Code
;; Defined in /usr/src/emacs/lisp/mail/supercite.el.gz
(defun sc-attribs-<>-addresses (from)
"Extract the author's email terminus from email address FROM.
Match addresses of the style \"<name[stuff]>.\""
(and (string-match "<\\(.*\\)>" from)
(match-string 1 from)))